projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
6d1bd1a
)
(internal_self_insert): Use insert_and_inherit.
author
Richard M. Stallman
<rms@gnu.org>
Sun, 28 Aug 1994 06:48:56 +0000
(06:48 +0000)
committer
Richard M. Stallman
<rms@gnu.org>
Sun, 28 Aug 1994 06:48:56 +0000
(06:48 +0000)
src/cmds.c
patch
|
blob
|
history
diff --git
a/src/cmds.c
b/src/cmds.c
index 582017a410c9eac153fa64a0ffa8f01a6d6b7838..a3f23c7ac02dc4563f0ba27f8c815879d9b79b56 100644
(file)
--- a/
src/cmds.c
+++ b/
src/cmds.c
@@
-335,14
+335,14
@@
internal_self_insert (c1, noautofill)
&& current_column () > XFASTINT (current_buffer->fill_column))
{
if (c1 != '\n')
- insert (&c1, 1);
+ insert
_and_inherit
(&c1, 1);
call0 (current_buffer->auto_fill_function);
if (c1 == '\n')
- insert (&c1, 1);
+ insert
_and_inherit
(&c1, 1);
hairy = 2;
}
else
- insert (&c1, 1);
+ insert
_and_inherit
(&c1, 1);
synt = SYNTAX (c);
if ((synt == Sclose || synt == Smath)
&& !NILP (Vblink_paren_function) && INTERACTIVE)